home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / EXISTS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  95 b   |  7 lines

  1. #include <io.h>
  2.  
  3. int Exists( char *filename )
  4. {
  5.     return( access( filename, 0 ) == 0 );
  6. }
  7.